Autoload the show keymap functions
authorJustin Burkett <justin@burkett.cc>
Fri, 23 Feb 2018 18:48:51 +0000 (13:48 -0500)
committerJustin Burkett <justin@burkett.cc>
Fri, 23 Feb 2018 18:48:51 +0000 (13:48 -0500)
which-key.el

index ab25ac9de2343c766ee7f799b03a49384f3ed995..fa865bf466a871997502580a967d13b917af597a 100644 (file)
@@ -2300,18 +2300,21 @@ Only if no keys fit fallback to LOC2."
                             (symbol-value keymap-sym)
                             nil all)))
 
+;;;###autoload
 (defun which-key-show-keymap ()
   "Show the top-level bindings in KEYMAP using which-key. KEYMAP
 is selected interactively from all available keymaps."
   (interactive)
   (which-key-show-keymap-1))
 
+;;;###autoload
 (defun which-key-show-full-keymap ()
   "Show all bindings in KEYMAP using which-key. KEYMAP is
 selected interactively from all available keymaps."
   (interactive)
   (which-key-show-keymap-1 t))
 
+;;;###autoload
 (defun which-key-show-minor-mode-keymap ()
   "Show the top-level bindings in KEYMAP using which-key. KEYMAP
 is selected interactively by mode in `minor-mode-map-alist'."